summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Capo Sobral <dcsobral@gmail.com>2014-04-10 15:15:09 -0600
committerDaniel Capo Sobral <dcsobral@gmail.com>2014-04-10 15:15:09 -0600
commite8a39e52302378ced143f0b85db834f2d295d371 (patch)
tree5d6370ac394140624cab6466b36468c1b9366246
parentaff9ec925704fe3c79bb1ce838bfa616432c6fe0 (diff)
downloadscala-e8a39e52302378ced143f0b85db834f2d295d371.tar.gz
scala-e8a39e52302378ced143f0b85db834f2d295d371.tar.bz2
scala-e8a39e52302378ced143f0b85db834f2d295d371.zip
Reword javap filtering options
"To filter out" means remove, and, therefore, has the exact opposite meaning of what the example shows. But "filter" is kind of an ambiguous word when it comes to what's removed and what's left, not to mention which you are interested in (if you filter water to drink that's one thing, if you filter water to mine gold, that's another), so I'm avoiding it altogether and going for some unambiguous.
-rw-r--r--2.11/index.markdown12
1 files changed, 6 insertions, 6 deletions
diff --git a/2.11/index.markdown b/2.11/index.markdown
index 19ef02fe33..c8aa496fa7 100644
--- a/2.11/index.markdown
+++ b/2.11/index.markdown
@@ -179,13 +179,13 @@ scala> :history
### `:javap` ([#1880](https://github.com/scala/scala/pull/1880))
-The command to dissasemble Java output got some bugfixes and new features. It is now possible to filter out members of classes:
+The command to dissasemble Java output got some bugfixes and new features. It is now possible to selectively display members of classes:
-- `Bar#foo` filters out all `foo` members
-- `Bar#` filters out all `apply` members
-- `-fun Bar#foo` filters out all anonfuns of `foo` members
-- `-fun Bar#` filters out all anonfuns of `apply` members
-- `-app Bar` filters out `Bar.delayedInit`
+- `Bar#foo` displays all `foo` members
+- `Bar#` displays all `apply` members
+- `-fun Bar#foo` displays all anonfuns of `foo` members
+- `-fun Bar#` displays all anonfuns of `apply` members
+- `-app Bar` displays `Bar.delayedInit`
Example usage: