Skip to content

Commit

Permalink
avoid 'adjacent string literals without intervening white space' warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sstrollo committed Mar 1, 2024
1 parent 571ba48 commit cd54c71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/yanger_sn.erl
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,6 @@ s() -> $\ .
nl() -> $\n.

indent(1) -> " ";
indent(2) -> " "" ";
indent(3) -> " "" "" ";
indent(2) -> " " " ";
indent(3) -> " " " " " ";
indent(Lvl) -> lists:duplicate(Lvl*2, s()).

0 comments on commit cd54c71

Please sign in to comment.