@@ -488,7 +488,7 @@ public NetcodeSessionBuilder<TInput> WithSocketFactory(Func<int, NetcodeOptions,
488488 WithSocketFactory ( new DelegateSocketFactory ( factory ) ) ;
489489
490490 /// <summary>
491- /// Add plugin type
491+ /// Register a plugin by type
492492 /// </summary>
493493 /// <seealso cref="ServicesConfig{TInput}" />
494494 [ MemberNotNull ( nameof ( sessionServices ) ) ]
@@ -508,19 +508,17 @@ public NetcodeSessionBuilder<TInput> UsePlugin(INetcodePlugin plugin)
508508
509509
510510 /// <summary>
511- /// Add new custom job
511+ /// Add a new custom job
512512 /// </summary>
513+ /// <seealso cref="ServicesConfig{TInput}" />
513514 [ MemberNotNull ( nameof ( sessionServices ) ) ]
514515 public NetcodeSessionBuilder < TInput > AddJob ( INetcodeJob job )
515516 {
516517 ArgumentNullException . ThrowIfNull ( job ) ;
517518 return ConfigureServices ( services => services . Jobs . Add ( job ) ) ;
518519 }
519520
520- /// <summary>
521- /// Add new custom job
522- /// </summary>
523- /// <seealso cref="ServicesConfig{TInput}" />
521+ /// <inheritdoc cref="AddJob(INetcodeJob)" />
524522 [ MemberNotNull ( nameof ( sessionServices ) ) ]
525523 public NetcodeSessionBuilder < TInput > AddJob < TPlugin > ( ) where TPlugin : INetcodeJob , new ( ) =>
526524 AddJob ( new TPlugin ( ) ) ;
@@ -700,9 +698,9 @@ public InputTypeSelected<T> Integer<T>(bool isUnsigned) where T : unmanaged, IBi
700698 new ( e => IntegerBinarySerializer . Create < T > ( isUnsigned , e ) ) ;
701699
702700 /// <summary>
703- /// Choose a raw unmanaged value type as input type.
701+ /// Choose a raw unmanaged value type as an input type.
704702 /// Must not be a reference type or a value type that contains references.
705- /// This *DO NOT* use custom <see cref="Endianness" /> for <typeparamref name="T" /> integer fields.
703+ /// This *DOES NOT* use custom <see cref="Endianness" /> for <typeparamref name="T" /> integer fields.
706704 /// </summary>
707705 /// <seealso cref="RuntimeHelpers.IsReferenceOrContainsReferences{T}" />
708706 public InputTypeSelected < T > Struct < T > ( ) where T : unmanaged =>
0 commit comments