summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-04-24 14:48:23 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-04-24 14:48:23 -0700
commitf1b8fee62127e1e48209a5fe2112831cc5d881f9 (patch)
tree5d6370ac394140624cab6466b36468c1b9366246
parentaff9ec925704fe3c79bb1ce838bfa616432c6fe0 (diff)
parente8a39e52302378ced143f0b85db834f2d295d371 (diff)
downloadscala-f1b8fee62127e1e48209a5fe2112831cc5d881f9.tar.gz
scala-f1b8fee62127e1e48209a5fe2112831cc5d881f9.tar.bz2
scala-f1b8fee62127e1e48209a5fe2112831cc5d881f9.zip
Merge pull request #3680 from dcsobral/patch-1
Reword javap filtering options
-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: