Fable icon indicating copy to clipboard operation
Fable copied to clipboard

Document Refactor N2

Open shayanhabibi opened this issue 6 months ago • 0 comments

Adjustment to previous xml docs too.

The following does not render breaks without the use of either <para> or <br/> in Rider.

/// <summary>
/// Emit a directive prologue at the calling position.
///
/// This is useful when you need to emit a directive prologue for a specific part of the code,
/// such as "use client" or "use server".
/// </summary>
/// <param name="text">Directive text</param>
let emitJsDirectivePrologue (text: obj) : unit = nativeOnly

Changes to

/// <summary>
/// <para>Emit a directive prologue at the calling position.</para>
/// <para>This is useful when you need to emit a directive prologue for a specific part of the code,
/// such as "use client" or "use server".</para>
/// </summary>
/// <param name="text">Directive text</param>
let emitJsDirectivePrologue (text: obj) : unit = nativeOnly

shayanhabibi avatar Jul 05 '25 02:07 shayanhabibi