Skip to content

Commit

Permalink
Add empty doc comments to all public Phobos modules to fix /library/.
Browse files Browse the repository at this point in the history
The DDOX based documentation is configured to only show entities with doc comments and thus hides modules without one. This adds an empty comment to all public Phobos modules that have stayed undocumented so far.

They should probably get a proper documentation with description/license/copyright/.... This just fixes the documentation until then.
  • Loading branch information
s-ludwig committed Jun 6, 2016
1 parent dc0f811 commit f07dfe6
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 0 deletions.
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.affix_allocator;

/**
Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.allocator_list;

import std.experimental.allocator.common;
Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.bitmapped_block;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/bucketizer.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.bucketizer;

/**
Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.fallback_allocator;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/free_list.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.free_list;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/free_tree.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.free_tree;

import std.experimental.allocator.common;
Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.kernighan_ritchie;
import std.experimental.allocator.building_blocks.null_allocator;

Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.null_allocator;

/**
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/quantizer.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.quantizer;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/region.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.region;

import std.experimental.allocator.common;
Expand Down
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.scoped_allocator;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/building_blocks/segregator.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.building_blocks.segregator;

import std.experimental.allocator.common;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/gc_allocator.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.gc_allocator;
import std.experimental.allocator.common;

Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/mallocator.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.mallocator;
import std.experimental.allocator.common;

Expand Down
1 change: 1 addition & 0 deletions std/experimental/allocator/mmap_allocator.d
@@ -1,3 +1,4 @@
///
module std.experimental.allocator.mmap_allocator;

// MmapAllocator
Expand Down
1 change: 1 addition & 0 deletions std/experimental/logger/core.d
@@ -1,3 +1,4 @@
///
module std.experimental.logger.core;

import std.array;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/logger/filelogger.d
@@ -1,3 +1,4 @@
///
module std.experimental.logger.filelogger;

import std.stdio;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/logger/multilogger.d
@@ -1,3 +1,4 @@
///
module std.experimental.logger.multilogger;

import std.experimental.logger.core;
Expand Down
1 change: 1 addition & 0 deletions std/experimental/logger/nulllogger.d
@@ -1,3 +1,4 @@
///
module std.experimental.logger.nulllogger;

import std.experimental.logger.core;
Expand Down

0 comments on commit f07dfe6

Please sign in to comment.