···44namespace osu.Framework.Bindables
55{
66 /// <summary>
77- /// An interface that represents a read-only leased bindable.
77+ /// An interface that represents a leased bindable.
88 /// </summary>
99 public interface ILeasedBindable : IBindable
1010 {
···1515 }
16161717 /// <summary>
1818- /// An interface that representes a read-only leased bindable.
1818+ /// An interface that representes a leased bindable.
1919 /// </summary>
2020 /// <typeparam name="T">The value type of the bindable.</typeparam>
2121 public interface ILeasedBindable<T> : ILeasedBindable, IBindable<T>