[libgee] Fix casing of Future.flat_map (previously flatMap)
- From: Maciej Marcin Piechotka <mpiechotka src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libgee] Fix casing of Future.flat_map (previously flatMap)
- Date: Sat, 6 Jul 2013 17:55:08 +0000 (UTC)
commit 80423cee5d578dc1813692e5954b7913010adb50
Author: Maciej Piechotka <uzytkownik2 gmail com>
Date: Sat Jul 6 17:34:13 2013 +0200
Fix casing of Future.flat_map (previously flatMap)
gee/future.vala | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gee/future.vala b/gee/future.vala
index 098f40a..841f085 100644
--- a/gee/future.vala
+++ b/gee/future.vala
@@ -158,7 +158,7 @@ public interface Gee.Future<G> : Object {
* larger computation inside the returned future for example by
* { link task}
*/
- public virtual Gee.Future<A> flatMap<A>(FlatMapFunc<A, G> func) {
+ public virtual Gee.Future<A> flat_map<A>(FlatMapFunc<A, G> func) {
return new FlatMapFuture<A, G> (this, func);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]