##// END OF EJS Templates
fixed typo
fixed typo

File last commit:

r295:28af686e24f7 default
r297:00a2d52813ee v3.0.16 default
Show More
IPromiseT.cs
10 lines | 188 B | text/x-csharp | CSharpLexer
namespace Implab {
public interface IPromise<out T> : IPromise {
void Then(IResolvable<T> next);
new T Join();
new T Join(int timeout);
}
}