Skip to content

Commit f9bc038

Browse files
committed
formatting
1 parent 48d7301 commit f9bc038

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

content/guides/weird_characters.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ Earmuffs (a pair of asterisk bookending var names) is a naming convention in
708708
many LISPs used to denote _special vars_. Most commonly in Clojure this is
709709
used to denote _dynamic_ vars, i.e. ones that can change depending on
710710
dynamic scope. The earmuffs act as a warning that "here be dragons"
711-
and to never assume the state of the var. Remember, this is a _convention_, not a
711+
and to never assume the state of the var. Remember, this is a convention, not a
712712
rule.
713713

714714
Core Clojure examples include `\*out*` and `\*in*` which represent the standard in
@@ -761,7 +761,7 @@ asynchronous code from the code base.
761761

762762
== `<symbol>?` - Predicate Suffix
763763

764-
Putting `?` at the end of a symbol is a _naming convention_ common across
764+
Putting `?` at the end of a symbol is a naming convention common across
765765
many languages that support special characters in their symbol names. It is
766766
used to indicate that the thing is a predicate, i.e. that it _poses a question_.
767767
For example, imagine using an API that dealt with buffer manipulation:
@@ -783,7 +783,7 @@ symbol naming in Clojure allows us to express intent more symbolically.
783783
(buffers/empty? my-buffer)
784784
false
785785
----
786-
This is simply a recommended _convention_, not a requirement.
786+
This is simply a recommended convention, not a requirement.
787787

788788
* https://github.com/bbatsov/clojure-style-guide#naming[Clojure Style Guide]
789789

@@ -808,7 +808,7 @@ user=> @my-stateful-thing
808808
1
809809
----
810810

811-
This is simply a recommended _convention_ and not a requirement.
811+
This is simply a recommended convention and not a requirement.
812812

813813
Note that the exclamation mark is often pronounced as bang.
814814

@@ -817,7 +817,7 @@ Note that the exclamation mark is often pronounced as bang.
817817
== `_` - Unused argument
818818

819819
When you see the underscore character used as function arguments or in a `let` binding,
820-
`_` is a common _naming convention_ to indicate you won't be using this argument.
820+
`pass:[_]` is a common naming convention to indicate you won't be using this argument.
821821

822822
This is an example using the `add-watch` function that can be used to add
823823
callback style behaviour when atoms change value. Imagine, given an atom, we

0 commit comments

Comments
 (0)