From 21e773ff5e55f723fbe1edb8f1f66ca3de157849 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Thu, 10 Oct 2024 15:27:40 +0100 Subject: [PATCH] Formatting (line breaks) --- lib/music_library/records/search_parser.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/music_library/records/search_parser.ex b/lib/music_library/records/search_parser.ex index 0a462f0f..3a0ff3ae 100644 --- a/lib/music_library/records/search_parser.ex +++ b/lib/music_library/records/search_parser.ex @@ -2,11 +2,11 @@ defmodule MusicLibrary.Records.SearchParser do @moduledoc """ This module includes functions to parse a search string containing tagged entities, e.g. artists or albums. - + Implementation is most likely suboptimal, non-idiomatic and failing against specific edge cases I haven't thought about - not an expert in parsing. """ - + import NimbleParsec word = utf8_string([not: ?\s], min: 1)