Skip to content

Commit

Permalink
Minor doc issues seen in scalafmt update (#417)
Browse files Browse the repository at this point in the history
* Minor doc issues seen in scalafmt update

* Move period outside of quote
  • Loading branch information
ekrich authored Jan 16, 2025
1 parent a3a11f7 commit a16ae39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sconfig/shared/src/main/scala/org/ekrich/config/Config.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import scala.annotation.varargs
* from config <em>keys</em>, rather than paths, to config values. Think of
* `ConfigObject` as a JSON object and `Config` as a configuration API.
*
* <p> The API tries to consistently use the terms "key" and "path." A key is a
* <p> The API tries to consistently use the terms "key" and "path". A key is a
* key in a JSON object; it's just a string that's the key in a map. A "path" is
* a parseable expression with a syntax and it refers to a series of keys. Path
* expressions are described in the
Expand All @@ -62,7 +62,7 @@ import scala.annotation.varargs
* [[ConfigUtil$.splitPath ConfigUtil.splitPath(String)]] to convert between
* path expressions and individual path elements (keys).
*
* <p> Another difference between `Config} and `ConfigObject` is that
* <p> Another difference between `Config` and `ConfigObject` is that
* conceptually, `ConfigValue`s with a [[ConfigValue#valueType valueType]] of
* [[ConfigValueType#NULL NULL]] exist in a `ConfigObject`, while a `Config`
* treats null values as if they were missing. (With the exception of two
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ trait ConfigMergeable {
* just return the original value, since they automatically override any
* fallback. This means that objects do not merge "across" non-objects; if you
* write `object.withFallback(nonObject).withFallback(otherObject)`, then
* `otherObject`will simply be ignored. This is an intentional part of how
* `otherObject` will simply be ignored. This is an intentional part of how
* merging works, because non-objects such as strings and integers replace
* (rather than merging with) any prior value:
*
Expand Down

0 comments on commit a16ae39

Please sign in to comment.