fix: typo

This commit is contained in:
1ambda 2017-06-28 11:59:05 +09:00
parent 316c5634ed
commit 33b0736e9f

View file

@ -52,7 +52,7 @@ In **Shared** mode, single JVM process and single Interpreter Group serves all n
<br/>
In Scoped mode, Zeppelin still runs single interpreter JVM process but multiple Interpreter Group serve each note. (in case of **per note**)
So, each note have their own dedicated session. (but still possible to shared objects via [ResourcePool](../../interpreter/spark.html#object-exchange))
So, each note have their own dedicated session. (but still possible to share objects via [ResourcePool](../../interpreter/spark.html#object-exchange))
## Isolated Mode
@ -62,7 +62,7 @@ So, each note have their own dedicated session. (but still possible to shared ob
<br/>
**Isolated** mode runs separate interpreter process for each note. (in case of **per note**)
So, each note have absolutely isolated session. (but still possible to shared objects via [ResourcePool](../../interpreter/spark.html#object-exchange))
So, each note have absolutely isolated session. (but still possible to share objects via [ResourcePool](../../interpreter/spark.html#object-exchange))
## Which mode should I use?