summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-29 15:09:43 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-08-29 15:27:59 +0900
commit2ed68d0ff9a932efbc4393c869534040dec8f647 (patch)
tree60a21a02ebbc9ae018125c7a46e714e571845151 /NEWS
parent893900dc7876596fab0e488affddf3abcb510445 (diff)
Revert "Add pipeline operator [Feature #15799]"
This reverts commits: * d365fd5a024254d7c105a62a015a7ea29ccf3e5d * d780c3662484d6072b3a6945b840049de72c2096 * aa7211836b769231a2a8ef6b6ec2fd0ec882ef29 * 043f010c28e82ea38978bf8ed885416f133b5b75 * bb4dd7c6af05c7821d572e2592ea3d0cc748d81f * 043f010c28e82ea38978bf8ed885416f133b5b75 * f169043d81524b5b529f2c1e9c35437ba5bc3a7a http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/94645
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS11
1 files changed, 0 insertions, 11 deletions
diff --git a/NEWS b/NEWS
index 89f7c41e6e..bc099d401d 100644
--- a/NEWS
+++ b/NEWS
@@ -48,17 +48,6 @@ sufficient information, see the ChangeLog file or Redmine
" # This has been warned since 2.4
EOS
-* Pipeline operator is experimentally added.
-
- This code equals to the next code.
-
- foo()
- |> bar 1, 2
- |> display
-
- foo()
- .bar(1, 2)
- .display
* The flip-flop syntax deprecation is reverted. [Feature #5400]