Skip to content

Commit 4f88aaf

Browse files
committed
Merge pull request elixir-lang#190 from zsoldosp/patch-1
emphasize that Inspect.inspect return values starting with '#' are not enforced
2 parents 0566314 + 819c5ce commit 4f88aaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

getting_started/4.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ iex> HashDict.new
242242
#HashDict<[]>
243243
```
244244

245-
Keep in mind that whenever the inspected value starts with `#`, it is representing a data structure in non-valid Elixir syntax. For those, the true representation can be retrieved by calling `inspect` directly and passing `raw` as an option:
245+
Keep in mind that, by convention, whenever the inspected value starts with `#`, it is representing a data structure in non-valid Elixir syntax. For those, the true representation can be retrieved by calling `inspect` directly and passing `raw` as an option:
246246

247247
```iex
248248
iex> inspect HashDict.new, raw: true

0 commit comments

Comments
 (0)